crypto/internal/fips140/hmac.HMAC.ipad (field)

9 uses

	crypto/internal/fips140/hmac (current package)
		hmac.go#L31: 	opad, ipad   []byte
		hmac.go#L81: 		if err := h.inner.(marshalable).UnmarshalBinary(h.ipad); err != nil {
		hmac.go#L88: 	h.inner.Write(h.ipad)
		hmac.go#L125: 	h.ipad = imarshal
		hmac.go#L149: 	hm.ipad = make([]byte, blocksize)
		hmac.go#L156: 	copy(hm.ipad, key)
		hmac.go#L158: 	for i := range hm.ipad {
		hmac.go#L159: 		hm.ipad[i] ^= 0x36
		hmac.go#L164: 	hm.inner.Write(hm.ipad)